home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / ev_201.zip / MODULE.HPP < prev    next >
C/C++ Source or Header  |  1993-07-03  |  1KB  |  43 lines

  1. #if !defined (MODULE_NAME)           // Prevents multiple declarations errors
  2. #define MODULE_NAME
  3.  
  4.  
  5. /*
  6.    Module        : MODULE.HPP
  7.    Version       : 2.0
  8.    Revision date : July 3rd, 1993
  9.    Author(s)     : Remy Gendron
  10.  
  11.    Description   : Module file template.
  12. */
  13.  
  14.  
  15. // Headers ------------------------------------------------------------------
  16.  
  17.  
  18. // Macros -------------------------------------------------------------------
  19.  
  20. #include "stdmacro.h"                           // Standard macro definitions
  21. #include "prjmacro.h"                     // This project's macro definitions
  22.  
  23.  
  24. // TypeDefs -----------------------------------------------------------------
  25.  
  26. #include "stdtype.h"                             // Standard type definitions
  27. #include "prjtype.h"                       // This project's type definitions
  28.  
  29.  
  30. // Prototypes ---------------------------------------------------------------
  31.  
  32. return_type function_name                                      // Description
  33. (
  34.    type param,                                                 // Description
  35.    type param,                                                 // Description
  36.    ...
  37. ) ;
  38.  
  39.  
  40. // End Header File ----------------------------------------------------------
  41.  
  42. #endif
  43.